home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / msoftapp.zip / BBUTTON.H < prev    next >
C/C++ Source or Header  |  1993-06-01  |  438b  |  26 lines

  1. // bbutton.h
  2.  
  3.  
  4. #ifndef __BBUTTON_H__
  5. #define __BBUTTON_H__
  6.  
  7. #define ID_BUTTON_MIN       IDOK
  8. #define N_BUTTONS  9
  9.  
  10. class CButtonTestDlg : public CDialog
  11.     {
  12. protected:
  13.     // construct
  14.     CBitmapButton buttons[N_BUTTONS];
  15.         // array of buttons constructed with no attached bitmap images
  16. public:
  17.     CButtonTestDlg() : CDialog(IDM_BUTTON_TEST)
  18.         { }
  19.  
  20.     BOOL OnInitDialog();
  21.     void OnOK();
  22.     };
  23.  
  24. #endif // __BBUTTON_H__
  25.  
  26.